home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / vbcc / targets / ppc-morphos / include / extra.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  322 b   |  18 lines

  1. #pragma begin_header
  2. #ifndef __EXTRA_H
  3. #define __EXTRA_H 1
  4.  
  5. #include <time.h>
  6. #include <string.h>
  7.  
  8. int chdir(const char *);
  9. clock_t clock(void);
  10. int getch(void);
  11. int isseparator(int);
  12. int iswhitespace(int);
  13. int stricmp(const char *,const char *);
  14. int strnicmp(const char *,const char *,size_t);
  15.  
  16. #endif
  17. #pragma end_header
  18.